
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
global-input-message
Advanced tools
This JavaScript library allows you to introduce mobile app interoperability into your device and web applications, so you users can user their mobiles to operate on your applications and enjoy many mobile related features like Mobile Encryption , Mobile Authentication , Mobile Content Transfer , Mobile Input & Control , Second Screen Experience and Mobile Personal Storage.
If you have React applications, you may use the React extension library, which is much more intuitive to use.
npm
modulenpm install --save global-input-message
<script src="https://unpkg.com/global-input-message@1.8.6/distribution/globalinputmessage.js">
</script>
Import and create a connector object:
import {createMessageConnector} from "global-input-message";
const connector=createMessageConnector();
or use require:
const globalInputMessage=require("global-input-message");
const connector=globalInputMessage.createMessageConnector();
Next invoke the connect()
function on the connector
, passing the configuration that specifies the mobile user interface elements and the callbacks for receiving the events. It is straightforward to understand The following example is
const mobileConfig={
initData:{
form:{
title:"Content Transfer",
fields:[{
label:"Content",
operation:{onInput:setContent}
}]
}
},
...
};
connector.connect(mobileConfig);
The following configuration specifies a login form:
const mobileConfig={
initData:{
form:{
title:"Sign In",
id:"###username###@myCompany.com",
fields:[{
label:"Username",
id:"username",
operations:{
onInput:setUsername
}
},{
label:"Password",
id:"password",
operations:{
onInput:setPassword
}
},{
label:"Sign In",
type:"button",
operations:{
onInput:signIn
}
}]
}
},
...
};
connector.connect(mobileConfig);
You can try out the sample code above on JSFiddler
Typescript type definitions are bundled with the module. An end-to-end Typescript test that demonstrates how you can achieve the interoperability between your mobile app and and your device application is available here.
FAQs
global input core js library
The npm package global-input-message receives a total of 217 weekly downloads. As such, global-input-message popularity was classified as not popular.
We found that global-input-message demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.